home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / math / difftime.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-13  |  87 b   |  7 lines

  1. #include <time.h>
  2.  
  3. #undef difftime
  4.  
  5. double difftime(time_t a,time_t b)
  6. { return a-b; }
  7.